home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmCoordText
- Caption = "Coordinate Text"
- ClientHeight = 2535
- ClientLeft = 2445
- ClientTop = 2910
- ClientWidth = 3930
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2535
- ScaleWidth = 3930
- Begin VB.TextBox MarkSize
- Height = 375
- Left = 2040
- TabIndex = 9
- Top = 1320
- Width = 1455
- End
- Begin VB.TextBox TxtHeight
- Height = 375
- Left = 2040
- TabIndex = 8
- Top = 480
- Width = 1455
- End
- Begin VB.OptionButton CoordType
- Caption = "Cartesian"
- Height = 255
- Index = 2
- Left = 360
- TabIndex = 4
- Top = 1200
- Width = 1215
- End
- Begin VB.OptionButton CoordType
- Caption = "Stacked"
- Height = 255
- Index = 1
- Left = 360
- TabIndex = 3
- Top = 840
- Width = 1215
- End
- Begin VB.OptionButton CoordType
- Caption = "Dotted"
- Height = 255
- Index = 0
- Left = 360
- TabIndex = 2
- Top = 480
- Width = 1215
- End
- Begin VB.CommandButton cmdOK
- Caption = "OK"
- Height = 375
- Left = 240
- TabIndex = 0
- Top = 1920
- Width = 1335
- End
- Begin VB.CommandButton cmdCancel
- Caption = "Cancel"
- Height = 375
- Left = 2520
- TabIndex = 1
- Top = 1920
- Width = 1215
- End
- Begin VB.Frame Frame1
- Caption = "Coordinate Type"
- Height = 1575
- Left = 120
- TabIndex = 5
- Top = 120
- Width = 1575
- End
- Begin VB.Label Label2
- Caption = "Mark Size"
- Height = 255
- Left = 2040
- TabIndex = 7
- Top = 1080
- Width = 1095
- End
- Begin VB.Label Label1
- Caption = "Text Height"
- Height = 255
- Left = 2040
- TabIndex = 6
- Top = 240
- Width = 975
- End
- Attribute VB_Name = "frmCoordText"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- '/******************************************************************/
- '/* */
- '/* TurboCAD for Windows */
- '/* Copyright (c) 1993 - 2001 */
- '/* International Microcomputer Software, Inc. */
- '/* (IMSI) */
- '/* All rights reserved. */
- '/* */
- '/******************************************************************/
- ' Storage for read-only property indicating whether
- ' or not the dialog box was cancelled. Default is
- ' False. Note that the declaration is Private, so
- ' that the value cannot be set from the OLE client
- ' application. The client reads the value using the
- ' DialogCancelled property.
- Private blnDialogCanceled As Boolean
- ' Read-only property indicating cancellation of the
- ' dialog.
- Property Get DialogCanceled() As Boolean
- DialogCanceled = blnDialogCanceled
- End Property
- Private Sub cmdCancel_Click()
- ' Set the value of the read-only property that
- ' tells the caller the dialog was cancelled.
- blnDialogCanceled = True
- Me.Hide
- End Sub
- Private Sub cmdOK_Click()
- Me.Hide
- End Sub
-